home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / sound / coco / !Coconizer / ReadMe < prev   
Text File  |  1994-09-24  |  27KB  |  554 lines

  1.                     ====================================
  2.                     ==   THE COCONIZER SOUNDTRACKER   ==
  3.                     ====================================
  4.  
  5. Coconizer consists of two aplications:
  6.  - The soundtrack editor  !Coconizer
  7.  - The player & toolbox   !CocoPlayr
  8.  
  9. To understand Coconizer in every detail please read the textfiles of
  10. !CocoPlayr, too. Copyright notices can be found at the end of the text
  11. files.
  12.  
  13.  
  14. The overscan mode of Coconizer:
  15. ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  16. We're using a full screen mode (ie with no borders) in order to bring more
  17. informations on screen. As everything, this has some advantages and brings
  18. some problems. Coconizer II will run optionally in the Wimp and hence only
  19. use a default RISC OS mode.
  20.  
  21.  
  22. ========================
  23. =  SOME GENERAL NOTES  =
  24. ========================
  25.  
  26. Well, here are some basic ideas when writing a new song:
  27.  
  28.  - First of all, the song needs a title. You can type in your name (which
  29.    can be up to 19 characters long), and use the song's filename as title.
  30.    After that you can choose the song format, which can be either four or
  31.    eight channels. Let's explain what this means exactly:
  32.  
  33.    The eight channel format uses the eight independent stereo voices of the
  34.    Archimedes, which obviously sound alot better than four channels (what a
  35.    surprise - we're not using an Amiga now!). However, as a result the
  36.    player needs to use up more processor speed to look after the required
  37.    DMA sound buffers. Well, whilst using Coconizer you needn't care, but if
  38.    you're going to need a song for a fast program, you will just have to
  39.    test it to see which is the better format. Despite all this, your Archie
  40.    is very fast, and it's well possible to play an eight voice song, AND
  41.    also run a program.
  42.    On the other side there is the four channel format, which only uses four
  43.    voices together, needing less processor time. However, on ARM3 the speed
  44.    difference is quite small: about 7% (with 12 MHz RAMs).
  45.  
  46.  - Well, let's begin. You can now define some instruments to use in your
  47.    composition (for an explanation of what an instrument actually is, see
  48.    the paragraph headed "Samples"). They are labelled from "a" to "z",
  49.    resulting in a total instrument pool of 26 samples at once (although
  50.    future versions of Coconizer may allow the use of more samples at once).
  51.    It is not possible to create a pattern without at least one instrument
  52.    loaded in.
  53.  
  54.  - After you've done all this you can start editing the song itself. Full
  55.    instructions for using Coconizer are in the next section.
  56.  
  57.    So, what is a song?
  58.    A song consists of several patterns, each of which is 64 lines deep and
  59.    four or eight rows wide, depending on the selected channel format.
  60.    Patterns are used to allow you to repeat several parts in your song, to
  61.    keep and/or beat the time, and to keep a good overview of the whole song.
  62.    The patterns hold the information about the tones and how to play them.
  63.  
  64.  Let's see an example of how a tone information word (32 bits) is build up:
  65.  
  66.        C#1 a F 05
  67.        / | |  \ \\_ Info Byte (left and right nibble)
  68.       /  | |   \
  69.      /   | |    \Command (or Effect)
  70.     /    | |
  71.    Note  | Instrument number
  72.          |
  73.     Octave number
  74.  
  75.  
  76.    And the interpretation of this information is very easy:
  77.  
  78.    » "C" is the international C - in this case, the "1" holds the octave
  79.      number, here octave 1. Currently octaves are in the range from -3 to
  80.      +4, and this means some extremely low or high notes are possible,
  81.      especially useful for sound effects. Furthermore the note is played as
  82.      "C Sharp". The "#" character always indicates the sharp of a note. If
  83.      the note entry contains nothing, than no new note is played.
  84.    » The "a" entry says that instrument "a" (which is the first one) is used
  85.      to play the note. By selecting an instrument its volume is set to its
  86.      default value.
  87.      If the instrument byte contains nothing, then the last selected one is
  88.      used, at the same volume.
  89.    » The next entry "F" holds the desired command or effect. In this case
  90.      the command is "Set Speed" (see below for a list of all the commands).
  91.    » Finally, the last entry "05" is the Infobyte, which contains values
  92.      for the selected command/effect. In this case it means Set Speed to 5.
  93.  
  94.    Difficult? Oh no. All of this information is displayed in an expanded
  95.    form in the head line of the edit window.
  96.  
  97.  
  98. Fine, now let's continue with the main steps...
  99.  
  100.  - After creating some patterns, you should choose the sequence of them, ie
  101.    set the order the patterns are played in.
  102.  
  103.  - Furthermore you could change the default setting of your selected
  104.    instruments. Each of them has its own default Volume, Repeat_At and
  105.    Repeat_Length.
  106.    The default volume is used for playing the intrument when it is selected
  107.    by the letter "a" - "z". The command "C = Set volume" will overwrite this
  108.    (of course).
  109.    If Repeat_At is zero, then the instrument will be silent after arriving
  110.    at the samples' end. This means that the tone sounds only as long as the
  111.    sample played. If it is set, then the instrument will start as normal but
  112.    be repeated at this offset number, whilst playing <Repeat_Length> bytes
  113.    each time.
  114.  
  115.  - And last but not least we come to the stereo positions of the channels.
  116.    When a song is started, they are set in a quite logical way: it begins
  117.    with channel one at the furthest left stereo position, and ends with
  118.    channel eight at the furthest right position. In four channel mode the
  119.    two furthest stereo positions on the left and right are not set.
  120.    For finer control, there's also a command available which allows the
  121.    setting of all the stereo positions whilst playing.
  122.  
  123.  
  124. ======================================
  125. =  COCONIZER'S COMMANDS AND EFFECTS  =
  126. ======================================
  127.  
  128. Although programmed in the same way, we should distinguish carefully between
  129. a command and an effect. A command is only performed once, like Set Speed,
  130. or Set Volume, together with new playing instructions, ie notes. An effect,
  131. like Arpeggio or Sliding, is performed at every interrupt call. That is,
  132. it's not performed when set, but at the following five (or more, depending
  133. on speed) interrupt calls, which are made until the next new note is played.
  134. Of course, you can perform these commands/effects without playing a new
  135. tone.
  136.  
  137. The sound playing routine is interrupt driven and is called 50 times a
  138. second (50 Hz). At each interrupt, effects and commands can be performed.
  139. Because 50 notes per second would be too fast for a tune, there's a counter
  140. which counts the interrupts before a new note is played. In the following
  141. context "each first interrupt" means the interrupt at the point when the
  142. counter is reset.
  143.  
  144.  
  145. The following effects/commands are currently available (indeed, they could
  146. be expanded to a theoretical number of &FF) :
  147.  
  148.  * EFFECT &00 :
  149.    Use arpeggio playing. That is, swap the note value 5 times whilst
  150.    playing, which is the default. Or more exactly: swap it <speed-1> times.
  151.    During these <speed-1> steps the following is performed:
  152.    1) Add left nibble of infobyte to the note value (and play).
  153.    2) Add right nibble to the original note (and play this).
  154.    3) Play original (base) note.
  155.    4) Repeat step 1, ie add left nibble, etc.
  156.    5) Repeat step 2, ie add right nibble, etc.
  157.  
  158.    For example:
  159.    The infobyte contains &54, and the arpeggio effect has been set. The tone
  160.    which must be played is entered as "D". First, "D" is played. Then, in
  161.    the first effect step, nibble &5 is added to the original note, resulting
  162.    in the tone "G" (D - D sharp - E - F - F sharp - G). This is played. At
  163.    the second step, nibble &4 is added to the original, resulting in the
  164.    tone "F Sharp". This is played, and so on.
  165.  
  166.    This was originally invented on Amiga which has four channels, in order
  167.    to make the voices sound a bit "fuller", and for other effects.
  168.  
  169.  * EFFECT &01 :
  170.    Slide up tone, ie add infobyte*64 to the output frequency. This is
  171.    usually done 5 times (depending on speed) while playing a note, until a
  172.    certain frequency is achieved. This limit comes from the Amiga.
  173.  
  174.  * EFFECT &02 :
  175.    Slide down tone, ie subtract infobyte*64 from frequency, <speed-1> times
  176.    per "play", until a certain frequency (the Amiga limit) is achieved.
  177.  
  178.  * EFFECT &03 :
  179.    Slide up volume. Every first interrupt, the infobyte is added to the
  180.    current volume of the current instrument. Because of the LSB (lower sign
  181.    bit) format of the sample system, only even infobytes are allowed, to
  182.    achieve smooth sliding.
  183.  
  184.  * EFFECT &04 :
  185.    Slide down volume. Subtract infobyte every first interrupt, for allowing
  186.    slow sliding.
  187.  
  188.  * EFFECT &05 :
  189.    Fine slide pitch up. Add infobyte*16 to frequency. There is no maximum.
  190.    This is the preferred method of sliding the pitch.
  191.  
  192.  * EFFECT &06 :
  193.    Fine slide pitch down. Subtract infobyte*16. The minimum is zero. This is
  194.    the preferred pitch sliding.
  195.  
  196.  * COMMAND &07 :
  197.    Set the stereo position of the current channel to infobyte value. Each
  198.    used channel may have its own stereo position. The infobyte can indicate
  199.    one of the following 7 positions:
  200.  
  201.           01 100% Left Channel
  202.           02  83% Left Channel
  203.           03  67% Left Channel
  204.           04      Centre
  205.           05  67% Right Channel
  206.           06  83% Right Channel
  207.           07 100% Right Channel
  208.  
  209.  * COMMAND &08 :
  210.    Start auto volume up. That is, slide up the volume of the current
  211.    instrument in this channel by the infobyte every first interrupt, from
  212.    now on. This will be done automatically. In order to clear this automatic
  213.    flag, you have to use command effect &08 with a zero infobyte.
  214.  
  215.  * COMMAND &09 :
  216.    Start auto volume down. Opposite to &08.
  217.    Clear this automatic flag by selecting same the command with the infobyte
  218.    as zero.
  219.  
  220.  * COMMAND &0A :
  221.    Start auto sliding up. That is, slide up the pitch (frequency) every
  222.    interrupt automatically by the infobyte value.
  223.    Clear this automatic flag by selecting same command with a zero infobyte.
  224.  
  225.  * COMMAND &0B :
  226.    Start auto sliding down. Opposite to &0A.
  227.    Clear this automatic flag by selecting same command with a zero infobyte.
  228.  
  229.  * COMMAND &0C :
  230.    Set the volume of the current instrument (on current channel) to the
  231.    infobyte value. The volume is in the range from &00 to &FF, where 0 is
  232.    loudest and 255 totally quiet. Please note the LSB sample format (ie
  233.    use only even numbers) and that the values have a logarithmic effect.
  234.  
  235.  * COMMAND &0D :
  236.    Pattern break. When this command is set then the whole pattern is
  237.    terminated, and the next one in the sequence is started. It doesn't
  238.    matter which channel activates it.
  239.  
  240.  * COMMAND &0E :
  241.    Position jump. The (hex!) info byte gives the sequence number where to
  242.    jump to. Please use with caution. (NB: Tom, is the max seq nr checked?)
  243.    Useful for several tunes in the same song which all use the same (sub-)
  244.    set of instruments. You could have a game over tune, a title tune and so
  245.    on, in the same song (file). When the end of one part is reached, it
  246.    jumps with this command to its start sequence number. You'll then have
  247.    to remember the sequence number of each part's start and use the command
  248.    or SWI Coco_PositionJump <Number> of the player module.
  249.  
  250.  * COMMAND &0F :
  251.    Set the play speed to value contained in the infobyte. The default speed
  252.    is 6. That is, if the interrupt counter achieves the selected speed, then
  253.    the next pattern information is interpreted (a new note row is played)
  254.    and the counter is reset.
  255.  
  256. An additional note to the auto commands: Although these auto commands are
  257. executed as commands, they actually make their appropriate effects be
  258. started. They are included to allow you to use multiple effects at the same
  259. time. All four auto effects may even be active at the same time (or rather:
  260. after setting one, the next may be set too). Please don't "forget" an auto
  261. effect once set. Clear it by setting the command together with the infobyte
  262. as zero. Like the other effects, the auto fx are performed in the time
  263. between two new notes, that is <speed-1> times, and only if a tone for this
  264. channel is (still) active.
  265.  
  266.  
  267. ===============================================
  268. =  TECHNICAL INFO ABOUT SAMPLES AND SAMPLING  =
  269. ===============================================
  270.  
  271. An instrument is a digitised sample file, digitised at an original base
  272. octave (for example middle C). Current instruments must not exceed the
  273. length of 64 KBytes. Some people digitise(d) their samples at other octaves,
  274. so don't wonder when you hear different instruments, about their different
  275. base octaves.
  276. There's no clear rule which octave contains the international 'A' (or should
  277. there be one?). Coconizer uses octave 1 for this tone. Most samples have a
  278. frequency of 440 Hz (approx) when played as international A (A 1), but as
  279. mentioned above, some will vary.
  280.  
  281. A sample file contains digitised data bytes. But what are they? Well, let's
  282. see what the manual says...
  283.  The sound DMA system of the Archimedes systematically outputs the data
  284.  bytes at a programmed sample rate; each (16-byte) load of DMA data from
  285.  memory is synchronized to the first stereo image position. Each byte must
  286.  be stored as an eight bit signed logarithm, ready for direct output to the
  287.  VIDC chip:
  288.  Multiple channel operations are possible with two, four or eight channels.
  289.  When output the channels are multiplexed into what is effectively one half,
  290.  one quarter or one eight of the sample period, so the signal level per
  291.  channel is scaled down by the same amount. Thus the signal level per
  292.  channel is scaled, depending on the number of channels; but the overall
  293.  signal level remains the same for all multi channel modes.
  294.  
  295. Well, why tell us this? There are some things resulting from the VIDC 8-bit
  296. logarithmic LSB (lower sign bit) format: If you digitise or create a new
  297. sample then the resulting file is often a (signed) linear one and therefore
  298. not ready for direct VIDC sound output. It first has to be converted to the
  299. correct signed logarithm format. Several nice PD tools exist which will do
  300. this for you.
  301.  
  302. And last but not least some technical details as to the maximum and default
  303. sample rate.
  304.  A high sample rate will give the best sound quality. If too high a rate is
  305.  sought then DMA request conflicts will occur, especially when high band-
  306.  widths are also required from the Video Controller by high resolution
  307.  screen modes. To avoid such contentions the output period must not be less
  308.  than 4 µs. Outputting a byte to one of eight channels every 4 µs results in
  309.  a sample period of 32 µs, which gives a maximum sample rate of 31.25 kHz
  310.  with eight active channels. With one active channel even 250 kHz. Today CD
  311.  players usually have about 42 kHz.
  312.  The clock for the Sound system is derived from the system clock for the
  313.  video controller, which is then derived by a multiple of 24. Pre RiscPC
  314.  Archimedes' use a VIDC system clock of 24 MHz, 25.175 MHz or 36 MHz,
  315.  depending on the screen mode and monitor type selected. The default output
  316.  period is 6 µs, which is compatible with VIDC system clocks running at
  317.  multiples of 4 MHz from 12 MHz upwards (ie 12 MHz, 16 MHz, 20 MHz..). The
  318.  6 µs can't be matched with the VIDC system clock of 25.175 MHz. In this
  319.  case the divider used is the same as for a 24 MHz VIDC system clock) which
  320.  results in a slightly shorter output period, and so sounds are
  321.  approximately a semitone higher.
  322.  
  323. Outputting a byte to one of eight every 6 µs results in a sample period of
  324. 48 µs, which gives a default sample rate of 20.833 kHz. Coconizer plays
  325. either four or eight channels, so we decided to keep the default sample
  326. rate, ie its sample period of 48 µs. The sound of the Archimedes is 8 bit
  327. logarithmic, which is vaguely equivalent to 12 bit linear. NB: The Amiga
  328. for example has 8 bit linear sound.
  329.  
  330.  
  331. ==========================
  332. =  HOW TO USE COCONIZER  =
  333. ==========================
  334.  
  335. As a guideline for mouse handling, the left button incs/decs slowly, the
  336. middle button steps at normal speed, and the right button steps quickly
  337. through a list. When changing default settings like Repeat_At, then pressing
  338. the left button together with the right one steps very quickly.
  339. With some control icons like "Play", "Play Pattern" and "Load Inst/Song",
  340. the left and right buttons perform different actions. The left one continues
  341. (if possible) from the last stopped position, and the right one begins from
  342. the start (it restarts).
  343.  
  344. You toggle channels on/off by clicking on the voice number (to the left to
  345. the graphic equalizer). This will help you in isolating a single voice for
  346. controlling it during editing.
  347. When playing a song or pattern, the "DISPLAY" icon toggles the channel
  348. display with the spectrum analyzer display. During play the cursor up/down
  349. arrows control the overall volume (useful for external audio output).
  350.  
  351. Here's an overview of the main icons:
  352. ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  353.  * LOAD SONG
  354.    Drag or double click on a song file in the usual RISC OS manner in order
  355.    to load a new song.
  356.    When the song has been loaded, the required instruments are loaded, so
  357.    there will be more disk changes to be done. Coconizer always loads these
  358.    instruments beginning with your Sample disk 01 in ascending (disk sorted)
  359.    order. Instruments which couldn't be found in the location file are shown
  360.    in red, and similar samples should be loaded instead (please note, they
  361.    can't be heard when they are shown in red!).
  362.    In case your location file is up to date, all samples will be loaded
  363.    correctly. In case you get problems, you should locate your samples with
  364.    !CocoPayr. Please note that !Coconizer only loads the location file when
  365.    installing itself on the icon bar.
  366.  
  367.  * SAVE SONG
  368.    You should always save your work with the savebox in the submenu of
  369.    Coconizer's iconbar icon (quitting the overscan Coco mode will keep your
  370.    song of course). This works in usual RISC OS manner.  NB: The old save
  371.    method in the Coco overscan mode is NOT recommended because you aren't
  372.    warned when the file already exists, and it always use the current
  373.    selected directory (CSD) to save to, this also applies to LOAD SONG.
  374.  
  375.  * LOAD INST
  376.    A new instrument is added to the instrument pool if the current sample
  377.    position is empty, and an old one is replaced with the new one if its
  378.    position was already used.
  379.    The number to the right of the instrument in the selection list is the
  380.    number KBytes the sample takes up on disk. The following number shows
  381.    which disk it is located on.
  382.  
  383.  * PLAY
  384.    Clicking the left mouse button here continues playing the song, at the
  385.    last stopped position (if possible). The middle button continues at the
  386.    beginning of the last stopped pattern. The right button restarts the song
  387.    from its beginning.
  388.  
  389.  * STOP
  390.    Used to stop playing, to leave the editing modes and to stop pattern
  391.    playing. When clicked in edit & play_pattern (debug off) mode then the
  392.    left button stops, and sets the cursor to the last played line. The right
  393.    button sets the cursor to the top of the pattern.
  394.  
  395.  * EDIT PATTERN
  396.    For editing there must be at least one instrument loaded. The current
  397.    pattern number is then entered. You may step through your patterns by
  398.    clicking the left/right arrow at the pattern number.
  399.    If you wish to create a new pattern, then you must select the next blank
  400.    pattern after the last one available, and you have to do this before you
  401.    click on the EDIT icon.
  402.    Quit editing with either the STOP icon or the ENTER key.
  403.  
  404.    Information about the keymap:
  405.      The function keys F1 - F8 put the cursor into the equivalent channel.
  406.      TAB jumps to the next channel row.
  407.      If the cursor is at the note row of a channel, then pressing a "piano"
  408.      key will enter the pushed note & current octave. A new instrument will
  409.      be entered if it was not the same as the last one. Keypad keys "+" and
  410.      "-" (or the octave icon) changes the current octave.
  411.      Moving the cursor allows you to enter all other information, like
  412.      commands, and so on. With Page up/down you step to the next/last green
  413.      mark.
  414.      RETURN steps to the upper right cursor position.
  415.      The "~" key mutes all sound activity.
  416.  
  417.    Paste/delete functions:
  418.      "Backspace" clears the current information entry. Key "-" clears either
  419.      the note, inst, command or the infobyte entry, depending on the cursor
  420.      position.
  421.      "Insert" inserts a free tone entry at the current voice. With "Delete"
  422.      you can kill one tone and shift the following ones up.
  423.      The keypad "/" deletes one whole channel row and keypad "*" deletes one
  424.      whole line. Finally, the "Home" key copies all 64 tones of your current
  425.      channel into a buffer (with a flash to indicate this), and the "Copy"
  426.      key writes the buffer back to the current channel.
  427.  
  428.  * PLAY PATTERN
  429.    This command is for repeated playing of the current pattern. Clicking on
  430.    this icon in edit mode with debug on changes its meaning: All keyboard
  431.    presses are then recorded. The pattern is played, and your inputs are
  432.    directly entered to the current cursor position.
  433.  
  434.  * DEBUG on (off)
  435.    If you're in edit mode, and debug is on, then all the notes of one
  436.    pattern line are played when moving the cursor up/down. This allows a
  437.    very exact way of editing and/or finding "wrong" notes.
  438.    If "play pattern" is active then recording works in slow motion, and some
  439.    keys, like the space bar and the cursor keys, perform special actions.
  440.    The speed of the "slow motion" may be set with function keys F9-F12, in
  441.    interrupts: F9=3, F10=5, F11=7, F12=12.
  442.    Note that "debug_on" disables the performance of effects, because of the
  443.    slow motion (which means "play pattern" also mutes the effects).
  444.  
  445.  * EDIT SEQUENCE
  446.    The selection window opens and you may choose the order of your patterns.
  447.    With "Enter" you can input a new pattern number, or edit the current one.
  448.    "Insert" copies the current pattern number and shifts those following
  449.    downwards. "Delete" clears the current number and shifts the others
  450.    upwards.
  451.    The pattern number at the cursor position is displayed in the bottom
  452.    window. This is the pattern "last stopped at" when considering the PLAY
  453.    function, and will be played with the left button.
  454.  
  455.  * COMMANDS
  456.    Well, obviously this icon lets you enter OSCLI commands. It is an old
  457.    relique of the former non-desktop version of Coconizer and should not
  458.    be used..
  459.  
  460.  * RESTART
  461.    Well, clicking on this icon resets Coconizer, ie you will loose all your
  462.    work after confirming the safety request!
  463.    Because of the memory management of the two different channel formats,
  464.    it's not possible to change to the other format whilst working on a song.
  465.    Only after restarting (and losing your old song) can you select the
  466.    desired channel format.
  467.  
  468.  * DESKTOP
  469.    By clicking on this icon you go back to the desktop. Your work is kept
  470.    in memory, and you can re-enter Coconizer by clicking on the iconbar.
  471.  
  472.  
  473. ============================
  474. =  SOME FINAL CONCLUSIONS  =
  475. ============================
  476.  
  477. The main aim of Coconizer is to allow you to create songs and to use them
  478. independently in your own programs, with the possibility of using either
  479. four or eight Archimedes channels. Surely not a bad idea if you want to
  480. create cool games and demos.
  481.  
  482. Going back to the tool 'Amiga converter' and the known converting problems:
  483. The main aim of Coconizer is not to play Amiga songs and tunes. Although we
  484. have tried to keep a lot of main commands and general structures, Coconizer
  485. was created to be an Archimedes soundtracker.
  486.  
  487. The authors would also like to point out that Coconizer was the very first
  488. soundtracker editor on the Archimedes, first release date back in July 1990,
  489. as pure OS CLI application. Later on it has been 'moved' to the icon bar of
  490. the Wimp. Time has shown that there are a lot of things in the editor which
  491. could be improved or could be done different now. Still, such is life and
  492. we'll write Coconizer II one day anyway.
  493.  
  494.  
  495. ======================
  496. =  THANKS & CREDITS  =
  497. ======================
  498.  
  499. Our special thanks goes to:
  500.  Willy Pape, Andreas Felix Föhl, Detlev Obsieger, Andreas Joos, Peter
  501.  Straif, Ulf Zimmermann, Thomas Verbeck, Frank Kipp, Gregor Spowart and
  502.  George Saliaris.
  503.  
  504. Yes, these are the brave men who sent support, showing us that we didn't
  505. waste our time with Coconizer. This also made it easier for us to release
  506. the new Wimp !CocoPlayr and its player module in the Freeware pool.
  507.  
  508. Also many thanks to Oregan Software Developments, Longman Logotron and
  509. Cambridge International Software for their donated software.
  510.  
  511. And credits to:
  512. · Karsten Obarski for inventing the popular SoundTracker on Amiga, and for
  513.   a lot of Public Domain songs and instruments.
  514. · Guttorm for his news, hints and suggestions.
  515. · Michel for his reports and smart ideas.
  516. · Felix for his ideas, the new command and his support.
  517. · Andy for transforming our former text into proper English.
  518. · The developers at Acorn for the fantastic Archimedes and its impressive
  519.   Operating System and a special thanks to Roger Wilson for all his cool
  520.   work inside RISC OS, especially his superb ARM BASIC plus Assembler.
  521. · [sarcasm on] Our polytechnic school, wasting our time with dull PC stuff
  522.   and preventing us from realeasing more on the Archimedes [sarcasm off].
  523.  
  524.  
  525. ===============================
  526. =  COPYRIGHT & CONTRIBUTIONS  =
  527. ===============================
  528.  
  529. So that everybody may benefit from our efforts, we have decided to set the
  530. status of Coconizer to Freeware. This means we keep the copyright, ie
  531. Coconizer is our intellectual property. It's Freeware, so you may use and
  532. copy it freely, provided all files of the apps !Coconizer and !CocoPlayr
  533. are included unaltered, and not for any profit.
  534.  
  535. No application, except the stand alone Wimp !CocoPlayr or its player module,
  536. is to be copied without the others included.
  537.  
  538. The software is provided 'as is'. Using it is entirely at your own risk.
  539.  
  540. Free upgrade versions of Coconizer and more soundtracks can be obtained from
  541. us by sending some money to cover postage and an ADFS (E/F) disk. No foreign
  542. coins please. Maybe you could try to send an international reply coupon.
  543.  
  544.  
  545.           Thomas Alber            or       Eduard Pfarr
  546.           Oggelshauser Str. 7              Atzenberger Str. 2
  547.           88422 Bad Buchau                 88427 Otterswang
  548.           Germany                          Germany
  549.  
  550.  
  551.            Coconizer © 1990-1994 Thomas Alber & Eduard Pfarr
  552.  
  553.            Text has been revised some time ago by Andy Piper
  554.